Loading
Scriptbox
 VBScript Links 
 About VBscript 
 JavaScript Links 
 About JavaScript 
 Powershell Links 
 PSCRIPT the Script Launcher 
 PowerShell Shortcut Keys 
 About Powershell 
     VBScript
    JavaScript
    Powershell
Disclaimer
Contact
Latest 10 Scripts
Script search
  :: { Category } :: 0-9ABCDEFGHIJKLMNOPQRSTUVWXYZ
         

Search Options:  Modify  SMTP  Authentication  Properties  

 Content of Modify SMTP Authentication Properties.vbs
MD5 Hash: 7A6DA33D7A4B21868B32626E4D17C261
' Description: Demonstration script that modifies global SMTP authentication metabase properties on a computer running IIS 6.0.


strComputer = "."
Set objWMIService = GetObject _
("winmgmts:{authenticationLevel=pktPrivacy}\\" _
& strComputer & "\root\microsoftiisv2")

Set colItems = objWMIService.ExecQuery _
("Select * from IIsSmtpServiceSetting")

For Each objItem in colItems
objItem.AuthAnonymous = True
objItem.AuthBasic = True
objItem.AuthNTLM = True
objItem.SaslLogonDomain = "fabrikam.com"
objItem.Put_
Next

   © 2008 - 2013 Boris Toll      :: Scripts available: 6.481 ::      :: scriptbox.toll.at ::      :: powered by www.toll.at ::
  Google Entries:n/a
  Yahoo Backlinks:n/a
  Live Backlinks:n/a
  del.icio.us Bookmarks:n/a
  Technorati Links:n/a